projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9125da0
)
(edebug-skip-whitespace): Only \n, not \r, ends a comment.
author
Richard M. Stallman
<rms@gnu.org>
Sun, 6 Mar 1994 21:05:30 +0000
(21:05 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 6 Mar 1994 21:05:30 +0000
(21:05 +0000)
lisp/emacs-lisp/edebug.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/edebug.el
b/lisp/emacs-lisp/edebug.el
index 69bb96e4c902aa92ce2a134dcfbd2153e50313ff..bdb172f0722648f973e171c3f012fd7e7c3174a1 100644
(file)
--- a/
lisp/emacs-lisp/edebug.el
+++ b/
lisp/emacs-lisp/edebug.el
@@
-1074,7
+1074,7
@@
Leave point after the value, if there is one."
"Leave point before the next token, skipping white space and comments."
(skip-chars-forward " \t\r\n\f")
(while (= (following-char) ?\;)
- (skip-chars-forward "^\n
\r
") ; skip the comment
+ (skip-chars-forward "^\n") ; skip the comment
(skip-chars-forward " \t\r\n\f")))
(defun edebug-read-sexp ()